home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Cream of the Crop 1
/
Cream of the Crop 1.iso
/
EDUCATE
/
TUTCOM45.ARJ
/
INVOICE.BAT
< prev
next >
Wrap
DOS Batch File
|
1991-05-01
|
1KB
|
28 lines
Echo OFF
Echo This file will print a copy of an invoice for you to use in
Echo registering a copy of TUTOR.COM. The file will be printed
Echo on your default printer (device PRN) if you did not specify
Echo any other printer when you start this batch file. As an
Echo example, if you wanted the invoice to print on a printer
Echo attached to your first serial port, you would start this
Echo batch file with the command: INVOICE COM1
Echo
IF A%1 == A GoTo Default
Echo Make certain that the printer attached to device %1
Echo is on and set to THREE spaces from the top of the page.
Echo
Echo To stop press Control-Break, otherwise
PAUSE
COPY INVOICE.TXT %1
Echo Thank you for your interest and payment.
GoTo Halt
:Default
Echo Make certain your default printer is on and set to THREE
Echo spaces from the top of the page.
Echo
Echo To stop press Control-Break, otherwise
PAUSE
COPY INVOICE.TXT PRN
Echo Thank you for your interest and payment.
:Halt